From 2f7b56c1a7b1ee92ff5f92888723e380412dd3ab Mon Sep 17 00:00:00 2001 From: Shannon Zhao Date: Tue, 31 May 2016 13:02:53 +0800 Subject: [PATCH] libxl/arm: Fix the function name in error log It should be xc_dom_devicetree_mem instead of xc_dom_devicetree_file. Signed-off-by: Shannon Zhao Acked-by: Wei Liu --- tools/libxl/libxl_arm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/libxl_arm.c b/tools/libxl/libxl_arm.c index 1195b37fc1..c6d77e3f90 100644 --- a/tools/libxl/libxl_arm.c +++ b/tools/libxl/libxl_arm.c @@ -872,7 +872,7 @@ next_resize: res = xc_dom_devicetree_mem(dom, fdt, fdt_totalsize(fdt)); if (res) { - LOGE(ERROR, "xc_dom_devicetree_file failed"); + LOGE(ERROR, "xc_dom_devicetree_mem failed"); rc = ERROR_FAIL; goto out; } -- 2.30.2